proc wx_shell( sequence command )
Category: Miscellaneous Routines
This cleans up internal wxWidgets memory. wxMain() automatically calls this before
it exits. If you do not use wxMain(), then you should manually call cleanup() before
your app exits.
See Also:
delete_instance,
find_window ,
get_key_state,
get_sys_color,
get_sys_metric,
launch_default_browser,
message_box,
mkdir,
wxMain,
wx_execute,
wx_shell
Category: Miscellaneous Routines
See Also:
cleanup,
find_window ,
get_key_state,
get_sys_color,
get_sys_metric,
launch_default_browser,
message_box,
mkdir,
wxMain,
wx_execute,
wx_shell
Category: Miscellaneous Routines
Returns the window identified by its id and parent.
See Also:
cleanup,
delete_instance,
get_key_state,
get_sys_color,
get_sys_metric,
launch_default_browser,
message_box,
mkdir,
wxMain,
wx_execute,
wx_shell
Category: Miscellaneous Routines
Returns 1 if specified key (see Key Codes for a list of codes to use) is currently
pressed down.
See Also:
cleanup,
delete_instance,
find_window ,
get_sys_color,
get_sys_metric,
launch_default_browser,
message_box,
mkdir,
wxMain,
wx_execute,
wx_shell
Returns: pointer to wxColour
Category: Miscellaneous Routines
Available system colors are:
- wxSYS_COLOUR_SCROLLBAR
- wxSYS_COLOUR_BACKGROUND
- wxSYS_COLOUR_ACTIVECAPTION
- wxSYS_COLOUR_INACTIVECAPTION
- wxSYS_COLOUR_MENU
- wxSYS_COLOUR_WINDOW
- wxSYS_COLOUR_WINDOWFRAME
- wxSYS_COLOUR_MENUTEXT
- wxSYS_COLOUR_WINDOWTEXT
- wxSYS_COLOUR_CAPTIONTEXT
- wxSYS_COLOUR_ACTIVEBORDER
- wxSYS_COLOUR_INACTIVEBORDER
- wxSYS_COLOUR_APPWORKSPACE
- wxSYS_COLOUR_HIGHLIGHT
- wxSYS_COLOUR_HIGHLIGHTTEXT
- wxSYS_COLOUR_BTNFACE
- wxSYS_COLOUR_BTNSHADOW
- wxSYS_COLOUR_GRAYTEXT
- wxSYS_COLOUR_BTNTEXT
- wxSYS_COLOUR_INACTIVECAPTIONTEXT
- wxSYS_COLOUR_BTNHIGHLIGHT
- wxSYS_COLOUR_3DDKSHADOW
- wxSYS_COLOUR_3DLIGHT
- wxSYS_COLOUR_INFOTEXT
- wxSYS_COLOUR_INFOBK
- wxSYS_COLOUR_LISTBOX
- wxSYS_COLOUR_DESKTOP
- wxSYS_COLOUR_3DFACE
- wxSYS_COLOUR_3DSHADOW
- wxSYS_COLOUR_3DHIGHLIGHT
- wxSYS_COLOUR_3DHILIGHT
- wxSYS_COLOUR_BTNHILIGHT
See Also:
cleanup,
delete_instance,
find_window ,
get_key_state,
get_sys_metric,
launch_default_browser,
message_box,
mkdir,
wxMain,
wx_execute,
wx_shell
Returns: atom
Category: Miscellaneous Routines
Available metrics are:
- wxSYS_MOUSE_BUTTONS
- wxSYS_BORDER_X
- wxSYS_BORDER_Y
- wxSYS_CURSOR_X
- wxSYS_CURSOR_Y
- wxSYS_DCLICK_X
- wxSYS_DCLICK_Y
- wxSYS_DRAG_X
- wxSYS_DRAG_Y
- wxSYS_EDGE_X
- wxSYS_EDGE_Y
- wxSYS_HSCROLL_ARROW_X
- wxSYS_HSCROLL_ARROW_Y
- wxSYS_HTHUMB_X
- wxSYS_ICON_X
- wxSYS_ICON_Y
- wxSYS_ICONSPACING_X
- wxSYS_ICONSPACING_Y
- wxSYS_WINDOWMIN_X
- wxSYS_WINDOWMIN_Y
- wxSYS_SCREEN_X
- wxSYS_SCREEN_Y
- wxSYS_FRAMESIZE_X
- wxSYS_FRAMESIZE_Y
- wxSYS_SMALLICON_X
- wxSYS_SMALLICON_Y
- wxSYS_HSCROLL_Y
- wxSYS_VSCROLL_X
- wxSYS_VSCROLL_ARROW_X
- wxSYS_VSCROLL_ARROW_Y
- wxSYS_VTHUMB_Y
- wxSYS_CAPTION_Y
- wxSYS_MENU_Y
- wxSYS_NETWORK_PRESENT
- wxSYS_PENWINDOWS_PRESENT
- wxSYS_SHOW_SOUNDS
- wxSYS_SWAP_BUTTONS
See Also:
cleanup,
delete_instance,
find_window ,
get_key_state,
get_sys_color,
launch_default_browser,
message_box,
mkdir,
wxMain,
wx_execute,
wx_shell
Category: Miscellaneous Routines
Launches the user's default browser to open the specified url.
See Also:
cleanup,
delete_instance,
find_window ,
get_key_state,
get_sys_color,
get_sys_metric,
message_box,
mkdir,
wxMain,
wx_execute,
wx_shell
[func]
message_box ( sequence text, sequence title, atom ok )
Category: Miscellaneous Routines
Creates a message box dialog, with style ok. Allowable styles are:
code
wxOK
wxYES_NO
wxCANCEL
wxYES
wxNO
wxNO_DEFAULT
wxYES_DEFAULT
wxICON_EXCLAMATION
wxICON_HAND
wxICON_WARNING
wxICON_ERROR
wxICON_QUESTION
wxICON_INFORMATION
wxICON_STOP
wxICON_ASTERISK
endcode
See Also:
cleanup,
delete_instance,
find_window ,
get_key_state,
get_sys_color,
get_sys_metric,
launch_default_browser,
mkdir,
wxMain,
wx_execute,
wx_shell
[func]
mkdir ( sequence directory, object perm, integer flags )
Category: Miscellaneous Routines
See Also:
cleanup,
delete_instance,
find_window ,
get_key_state,
get_sys_color,
get_sys_metric,
launch_default_browser,
message_box,
wxMain,
wx_execute,
wx_shell
Category: Miscellaneous Routines
This starts the event loop and your main application.
See Also:
cleanup,
delete_instance,
find_window ,
get_key_state,
get_sys_color,
get_sys_metric,
launch_default_browser,
message_box,
mkdir,
wx_execute,
wx_shell
[proc]
wx_execute ( sequence command, integer flag )
Category: Miscellaneous Routines
flag can be a combination of:
- wxEXEC_ASYNC: execute the process asynchronously
- wxEXEC_SYNC: execute it synchronously, i.e. wait until it finishes
- wxEXEC_NOHIDE: under Windows, don't hide the child even if it's IO is redirected (this
is done by default)
- wxEXEC_MAKE_GROUP_LEADER: under Unix, if the process is the group leader then killing -pid kills
all children as well as pid
See Also:
cleanup,
delete_instance,
find_window ,
get_key_state,
get_sys_color,
get_sys_metric,
launch_default_browser,
message_box,
mkdir,
wxMain,
wx_shell
Category: Miscellaneous Routines
See Also:
cleanup,
delete_instance,
find_window ,
get_key_state,
get_sys_color,
get_sys_metric,
launch_default_browser,
message_box,
mkdir,
wxMain,
wx_execute